home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
New Star Software Collection
/
NSS_Collection.iso
/
5-029 turbo debugger and assem
/
disks.7z
/
3
/
CHAPXMPL.ARC
/
DELAY.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1988-08-29
|
315 b
|
17 lines
DOSSEG
.MODEL SMALL
.STACK 200h
.CODE
Delay:
mov cx,0
DelayLoop:
loop DelayLoop
ret
ProgramStart:
call Delay ;pause for the time required to
; execute 64K loops
mov ah,4ch
int 21h
END ProgramStart